1 //*****************************************************************************
4 // Date created: 31 July 2005
6 // Description: The AutoGdiObject template class takes care of
7 // automatically deleting GDI objects such as pens, brushes
10 //*****************************************************************************
31 BOOL result
= ::DeleteObject(m_handle
);
32 Debug::Assert(0 != result
);
40 AutoGdiObject(const AutoGdiObject
&);
41 AutoGdiObject
& operator=(const AutoGdiObject
&);